home *** CD-ROM | disk | FTP | other *** search
/ START Magazine / START VOL 4 NO 1.st / POGOSRC.ARC / NEO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1985-11-20  |  883 b   |  28 lines

  1.  
  2. struct neo_head
  3. {
  4.     int type;  /* 0 for neo, 1 for programmed pictures, 2 for cels? */
  5.     int resolution; /*0 lores, 1 medium, 2 hires*/
  6.     int colormap[16];
  7.     char filename[8+1+3];
  8.     int ramp_seg; /*hibit active, bits 0-3 left arrow, 4-7 right arrow*/
  9.     char ramp_active;  /*hi bit set if actively cycled*/
  10.     char ramp_speed;  /*60hz ticks between cycles*/
  11.     int slide_time;  /*60hz ticks until next picture*/
  12.     int xoff, yoff;  /*upper left corner of cel*/
  13.     int width, height; /*dimensions of cel*/
  14.     char    op;        /* xor this one, copy it? */
  15.     char    compress;    /* compressed? */
  16.     long    data_size;        /* size of data */
  17.     char reserved[30];    /* Please leave this zero, I may expand later */
  18.     char pad[30]; /* You can put some extra info here if you like */
  19. };
  20.  
  21. struct degas_head
  22.     {
  23.     int res;
  24.     int colormap[16];
  25.     };
  26. extern char *get_fname();    /* request file name from user */
  27.  
  28.